home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot / RCS / boot.h,v < prev    next >
Encoding:
Text File  |  1989-06-16  |  1.2 KB  |  71 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.06.16.08.30.31;  author brent;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     89.06.02.11.10.59;  author brent;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Header file for sprite tftp boot program
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Added machparam.h
  28. @
  29. text
  30. @/*-
  31.  * boot.h --
  32.  *     Header file for sprite tftp boot program
  33.  *
  34.  * Copyright (c) 1987 by the Regents of the University of California
  35.  *
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  *
  44.  *    "$Header$ SPRITE (Berkeley)"
  45.  */
  46. #ifndef _BOOT_H
  47. #define _BOOT_H
  48.  
  49. #include <machparam.h>
  50.  
  51. #ifndef ASM
  52. #include    "sunromvec.h"
  53. #endif /* ASM */
  54.  
  55. #define BOOT_START        (BOOT_CODE-KERNEL_START)
  56.  
  57. #define printf      (*romp->v_printf)
  58. #define printhex  (*romp->v_printhex)
  59.  
  60. #endif /* _BOOT_H */
  61. @
  62.  
  63.  
  64. 1.1
  65. log
  66. @Initial revision
  67. @
  68. text
  69. @d19 2
  70. @
  71.